home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000022_andreas@ibm-1.…Garching.MPG.DE_Fri Oct 1 14:59:06 1993.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from ibm-1.mpa-garching.mpg.de by cs.umb.edu with SMTP id AA29031
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Fri, 1 Oct 1993 09:01:07 -0400
  3. Received: by ibm-1.MPA-Garching.MPG.DE (5.67/1.37)
  4.     id AA38125; Fri, 1 Oct 93 13:59:06 +0100
  5. Date: Fri, 1 Oct 93 13:59:06 +0100
  6. From: andreas@ibm-1.MPA-Garching.MPG.DE (Andreas Schott)
  7. Message-Id: <9310011259.AA38125@ibm-1.MPA-Garching.MPG.DE>
  8. To: "K. Berry" <karl@cs.umb.edu>
  9. Cc: tex-k@cs.umb.edu
  10. Subject: Re: pstfmdir and psvfdir
  11. In-Reply-To: <199310011117.AA12338@terminus.cs.umb.edu>
  12. References: <199310011117.AA12338@terminus.cs.umb.edu>
  13. Reply-To: andreas@mpa-garching.mpg.de (Andreas Schott)
  14.  
  15. Hello Karl,
  16.  
  17. you write:
  18. > Can you send me specifically what changes you'd like to support putting
  19. > TFM's and VF's in different directories?  I can't see how to do this
  20. > (while preserving the current directory structure support also).  Thanks.
  21.  
  22.  
  23. Here my answer to clarify my wish for two variables instead of
  24. the current one $(psfontdir):
  25.  
  26. You should only use two separate variables, which for you
  27. just have the same value. But I change the default-pathes
  28. to the tfm/vf-files, so I need to have the PS-related-files
  29. to be put in different directories. Having two variables
  30. would allow that easily. 
  31.  
  32.  
  33. Here is what I have:
  34.  
  35. default_tfm_path = .:$(texfontdir)/tfm//
  36. default_vf_path = .:$(texfontdir)/vf//
  37.  
  38. pstfmdir = $(texfontdir)/tfm/PS
  39. psvfdir = $(texfontdir)/vf/PS
  40.  
  41. With your new //-mechanism, which works not only at the
  42. end of a path, one could also do something like:
  43.  
  44. default_tfm_path = .:$(texfontdir)//tfm
  45. default_vf_path = .:$(texfontdir)//vf
  46.  
  47. pstfmdir = $(texfontdir)/PS/tfm
  48. psvfdir = $(texfontdir)/PS/vf
  49.  
  50. Andreas.